/* Options: Date: 2026-04-15 18:54:04 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://kpm_digiofficeapigateway.tbi.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocuments.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/documents", Verbs="GET POST") open class GetDocuments : IReturn> { var ViewID:UUID? = null var PageSize:Int? = null var PageNumber:Int? = null var SearchCriteria:String? = null var ExplorerID:UUID? = null var Path:String? = null var ExternalNumber:String? = null var ModifiedSince:Date? = null var AllVersions:Boolean? = null var OrderBy:String? = null var Archived:Boolean? = null var FilterName:String? = null var ProgCode:String? = null var RegistrationProfileFieldID:UUID? = null var DependableFields:ArrayList = ArrayList() var IncludeCustomProperties:Boolean? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = GetDocuments.responseType } open class RegistrationProfileFieldValue { var DocumentFieldID:UUID? = null var Value:String? = null var ShadowValue:String? = null var IsModifiedByUser:Boolean? = null } open interface ICustomProperties { var CustomProperties:HashMap? } open class Document { var GlobalID:String? = null var RootDocumentID:String? = null var Code:String? = null var Subject:String? = null var VersionNumber:String? = null var NewestVersion:Boolean? = null var RelationReference:Reference? = null var DocumentTypeReference:Reference? = null var ProjectReference:Reference? = null var ConstructionBlockReference:Reference? = null var ConstructionNumberReference:Reference? = null var HousingTypeReference:Reference? = null var Floor:Int? = null var FloorSpecified:Boolean? = null var DeletedDate:Date? = null var DeletedDateSpecified:Boolean? = null var File:File? = null var CustomFields:ArrayList? = null var CreationDate:Date? = null var CreatedBy:String? = null var ModifiedDate:Date? = null var ModifiedBy:String? = null }